Skip to main content

ConcatenateStringsWithSpace

Type

operator

Summary

Concatenates Left and Right with a space between.

Syntax

<Left> && <Right>

Description

The result consists of the chars of Left followed by a space, and then the chars of Right.

Parameters

NameTypeDescription

Left

An expression which evaluates to a string.

Right

An expression which evaluates to a string.

Examples

variable tVar as String
put "This" && "is" && "a" && "sentence." into tVar -- tVar contains "This is a sentence."
Thank you for your feedback!

Was this page helpful?